* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #f4f4f4;
}

/* ================= NAVBAR ================= */

.navbar {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 7%;
    z-index: 1000;
    direction: rtl;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 200px;
}

.logo h3 {
    font-size: 18px;
    font-weight: 800;
}

.logo span {
    font-size: 11px;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.booking-btn {
    background: #f7a928;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

/* ================= MOBILE NAV ================= */

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    color: #fff;
    padding: 30px;
    transition: 0.4s ease;
    z-index: 2000;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 50px;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu.active {
    right: 0;
}

.close-btn {
    text-align: left;
    font-size: 20px;
    cursor: pointer;
}

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1500;
}

.overlay-menu.active {
    display: block;
}

/* ===== Dropdown Base ===== */
.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* سهم */
.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* القائمة الأساسية */
.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s ease;
}

/* عند hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* لف السهم */
.dropdown:hover>a .arrow {
    transform: rotate(180deg);
}

/* العناصر */
.dropdown-menu li {
    padding: 10px 20px;
    position: relative;
}

.dropdown-menu li a {
    color: #000;
    display: flex;
    justify-content: space-between;
}

/* ===== Sub Dropdown ===== */
.dropdown-sub {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 0;
    right: 100%;
    background: #fff;
    min-width: 160px;
    border-radius: 10px;
    padding: 10px 0;
    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px) scale(0.95);
    transition: all 0.3s ease;
}

.dropdown-sub:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

/* سهم sub */
.dropdown-sub:hover>a .arrow {
    transform: rotate(90deg);
}

/* موبايل dropdown */
.mobile-dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* السهم */
.mobile-dropdown .arrow {
    transition: transform 0.3s ease;
}

/* لف السهم لما يفتح */
.mobile-dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Animation خفيفة للقائمة */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
    /* كفاية للمحتوى */
}

/* Responsive */

@media(max-width:992px) {

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .booking-btn {
        display: none;
    }
}
.about {
  background: #f3f3f3;
  padding: 120px 0;
  text-align: center;
  position: relative;
  margin-top: 100px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.title {
  font-size: 72px;
  font-weight: 800;
  color: #f7a928;
  margin-bottom: 30px;
}

.description {
  max-width: 850px;
  margin: auto;
  line-height: 1.9;
  font-size: 18px;
  color: #444;
  margin-bottom: 100px;
}

/* الثلاث صور */
.three-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.side img {
  width: 280px;
  height: 420px;
  border-radius: 30px;
  object-fit: cover;
}

.middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;  /* ينزل الصورة الوسط سنة */
}

.middle img {
  width: 320px;
  height: 460px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.call {
  font-size: 22px;
  margin-bottom: 30px;
  color: #444;
}
/* بداية قبل الظهور */
.side,
.middle,
.big-wrapper,
.title,
.description {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* لما العنصر يظهر */
.show {
  opacity: 1;
  transform: translateY(0);
}

/* نخلي صورة النص تطلع أقوى سنة */
.middle {
  transition-delay: 0.2s;
}

/* Hover خفيف للصور */
.side img,
.middle img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.side img:hover,
.middle img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
/* ================= Responsive ================= */
@media (max-width: 992px) {

  /* نخلي الكونتينر عادي */
  .title {
    font-size: 40px;
  }

  .description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  /* الثلاث صور بنظام Grid */
  .three-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }

  /* صورة النص تبقى أول صف لوحدها */
  .middle {
    grid-column: 1 / -1; /* تاخد الصف كله */
    order: 1;
    margin-top: 0;
  }

  /* العنوان والكلام بعد صورة النص */
  .title {
    order: 2;
  }

  .description {
    order: 3;
  }

  /* الصورتين جنب بعض */
  .side.left {
    grid-column: 1 / 2;
  }

  .side.right {
    grid-column: 2 / 3;
  }

  .side img,
  .middle img {
    width: 100%;
    height: 220px;
  }
}
.vm-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background: url("../media/malls/WhatsApp\ Image\ 2026-03-30\ at\ 21.50.45.jpeg") center/cover no-repeat;
  display: flex;
  justify-content: center;
}

.vm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.vm-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 2;
}

.vm-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 45px;
  border-radius: 12px;

  background: linear-gradient(
  135deg,
  rgba(233, 201, 151, 0.35),
  rgba(247, 168, 40, 0.51)
);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.25);

  color: #fff;

  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(.17,.67,.38,1);
}

.vm-card.show {
  transform: translateY(0);
  opacity: 1;
}

.vm-icon {
  font-size: 38px;
  min-width: 50px;
}

.vm-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.vm-content p {
  line-height: 1.6;
  font-size: 16px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .vm-icon {
    margin-bottom: 15px;
  }
}
.footer {
  background: #efefef;
  padding: 60px 20px 30px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f4a51c;
}

.footer-col p {
  color: #777;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: #777;
  text-decoration: underline;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #000;
}

/* SOURCES GRID */
.links-grid {
  display: flex;
  gap: 40px;
}

/* SOCIAL */
.social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.social span {
  width: 45px;
  height: 45px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.social span i {
  font-size: 16px;
  color: #555;
}

.social span:hover {
  background: #f4a51c;
}

.social span:hover i {
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  color: #777;
  font-size: 14px;
}

.footer-bottom a {
  color: #777;
  text-decoration: underline;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .links-grid {
    flex-direction: column;
  }

  .social {
    justify-content: flex-start;
  }

  .footer {
    padding: 40px 15px;
  }
}
